Use lowercase paths like pilrc

This commit is contained in:
meepingsnesroms
2019-02-21 11:03:31 -08:00
parent c7dc657de5
commit a57d45862e
2 changed files with 9 additions and 2 deletions

View File

@@ -356,8 +356,8 @@ QImage getIconImage(const QString& path, int16_t width, int16_t height, uint8_t
void convertToPalmIcons(const QString& path, const QString& outputDirectory){
QFileInfo imagePath(path);
QFile taib03E8File(outputDirectory + "/tAIB03E8.bin");
QFile taib03E9File(outputDirectory + "/tAIB03E9.bin");
QFile taib03E8File(outputDirectory + "/tAIB03e8.bin");
QFile taib03E9File(outputDirectory + "/tAIB03e9.bin");
uint8_t* taib03E8 = new uint8_t[MAX_PALM_BITMAP_SIZE * 5];
uint8_t* taib03E9 = new uint8_t[MAX_PALM_BITMAP_SIZE * 5];
uint32_t taib03E8Offset = 0;

View File

@@ -87,3 +87,10 @@ UInt32 emuKeyCurrentState(void){
/*need to call old KeyCurrentState then | wihth new keys*/
return 0x00000000;
}
/*need to add these for 320x320 support
UInt16 WinSetCoordinateSystem(UInt16 coordSys)
HIGH_DENSITY_TRAP(HDSelectorWinSetCoordinateSystem);
Err WinGetSupportedDensity(UInt16* densityP)
HIGH_DENSITY_TRAP(HDSelectorWinGetSupportedDensity);
*/