Increase C64 font char count limit to 512

This commit is contained in:
Andy McFadden 2023-01-04 10:09:28 -08:00
parent 4f64a936ed
commit 58d794f535
1 changed files with 2 additions and 2 deletions

View File

@ -124,14 +124,14 @@ namespace RuntimeData.Commodore {
new VisParamDescr("File offset (hex)",
P_OFFSET, typeof(int), 0, 0x00ffffff, VisParamDescr.SpecialMode.Offset, 0),
new VisParamDescr("Number of items",
P_COUNT, typeof(int), 1, 256, 0, 96),
P_COUNT, typeof(int), 1, 512, 0, 96),
}),
new VisDescr(VIS_GEN_MULTI_COLOR_FONT, "C64 Multi-Color Font", VisDescr.VisType.Bitmap,
new VisParamDescr[] {
new VisParamDescr("File offset (hex)",
P_OFFSET, typeof(int), 0, 0x00ffffff, VisParamDescr.SpecialMode.Offset, 0),
new VisParamDescr("Number of items",
P_COUNT, typeof(int), 1, 256, 0, 96),
P_COUNT, typeof(int), 1, 512, 0, 96),
}),
};