mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
Updated overlay pack. Updated .int files to auto-detect CC3 .rom format.
This commit is contained in:
parent
42e0af06dd
commit
9ac9c62e90
2
Makefile
2
Makefile
@ -14,7 +14,7 @@ include $(DEVKITARM)/ds_rules
|
||||
|
||||
export TARGET := NINTV-DS
|
||||
export TOPDIR := $(CURDIR)
|
||||
export VERSION := 4.9
|
||||
export VERSION := 4.9a
|
||||
|
||||
ICON := -b $(CURDIR)/logo.bmp "NINTV-DS $(VERSION);wavemotion-dave;https://github.com/wavemotion-dave/NINTV-DS"
|
||||
|
||||
|
BIN
NINTV-DS.nds
BIN
NINTV-DS.nds
Binary file not shown.
@ -101,7 +101,8 @@ BOOL LoadCart(const CHAR* filename)
|
||||
FatalError("BIN FILE DOES NOT EXIST");
|
||||
return FALSE;
|
||||
}
|
||||
if (fgetc(file) == 0xA8) bIsROM = true;
|
||||
u8 firstByte = fgetc(file);
|
||||
if ((firstByte == 0xA8) || (firstByte == 0x41)) bIsROM = true; // We accept eitehr ICART (0xA8) or CC3 (0x41) as proof that this is probably a ROM file
|
||||
fclose(file);
|
||||
}
|
||||
|
||||
|
BIN
extras.zip
BIN
extras.zip
Binary file not shown.
Loading…
Reference in New Issue
Block a user