mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-23 21:19:16 +01:00
Adjust Col/Int for HW3 screen size
This commit is contained in:
parent
5012ca88ac
commit
0a2e1ab36d
@ -386,7 +386,7 @@ void setCart_COL() {
|
|||||||
display_Clear();
|
display_Clear();
|
||||||
|
|
||||||
// Read game name
|
// Read game name
|
||||||
get_line(gamename, &myFile, 96);
|
get_line(gamename, &myFile, 42);
|
||||||
|
|
||||||
// Read CRC32 checksum
|
// Read CRC32 checksum
|
||||||
sprintf(checksumStr, "%c", myFile.read());
|
sprintf(checksumStr, "%c", myFile.read());
|
||||||
@ -426,9 +426,8 @@ void setCart_COL() {
|
|||||||
// Skip every 3rd line
|
// Skip every 3rd line
|
||||||
skip_line(&myFile);
|
skip_line(&myFile);
|
||||||
|
|
||||||
println_Msg(F("Select your cartridge:"));
|
println_Msg(F("Select your cartridge"));
|
||||||
println_Msg(F(""));
|
println_Msg(F(""));
|
||||||
print_Msg(F("Name: "));
|
|
||||||
println_Msg(gamename);
|
println_Msg(gamename);
|
||||||
print_Msg(F("Size: "));
|
print_Msg(F("Size: "));
|
||||||
print_Msg(cartSize);
|
print_Msg(cartSize);
|
||||||
|
@ -772,7 +772,7 @@ void setCart_INTV() {
|
|||||||
display_Clear();
|
display_Clear();
|
||||||
|
|
||||||
// Read game name
|
// Read game name
|
||||||
get_line(gamename, &myFile, 96);
|
get_line(gamename, &myFile, 42);
|
||||||
|
|
||||||
// Read CRC32 checksum
|
// Read CRC32 checksum
|
||||||
sprintf(checksumStr, "%c", myFile.read());
|
sprintf(checksumStr, "%c", myFile.read());
|
||||||
@ -824,9 +824,8 @@ void setCart_INTV() {
|
|||||||
// Skip every 3rd line
|
// Skip every 3rd line
|
||||||
skip_line(&myFile);
|
skip_line(&myFile);
|
||||||
|
|
||||||
println_Msg(F("Select your cartridge:"));
|
println_Msg(F("Select your cartridge"));
|
||||||
println_Msg(F(""));
|
println_Msg(F(""));
|
||||||
print_Msg(F("Name: "));
|
|
||||||
println_Msg(gamename);
|
println_Msg(gamename);
|
||||||
print_Msg(F("Size: "));
|
print_Msg(F("Size: "));
|
||||||
print_Msg(cartSize);
|
print_Msg(cartSize);
|
||||||
|
Loading…
Reference in New Issue
Block a user