build and comment this crap out (nice build error lol)

This commit is contained in:
CasualPokePlayer 2021-10-29 23:07:34 -07:00
parent 7a30cce55f
commit 463ef90fd2
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -25,19 +25,19 @@ int GetConfigInt(ConfigEntry entry)
{
const int imgsizes[] = {0, 256, 512, 1024, 2048, 4096};
switch (entry)
/*switch (entry)
{
case DLDI_ImageSize: return imgsizes[Config::DLDISize];
case DSiSD_ImageSize: return imgsizes[Config::DSiSDSize];
}
}*/
return 0;
}
bool GetConfigBool(ConfigEntry entry)
{
switch (entry)
/*switch (entry)
{
case DLDI_Enable: return Config::DLDIEnable != 0;
case DLDI_ReadOnly: return Config::DLDIReadOnly != 0;
@ -46,21 +46,21 @@ bool GetConfigBool(ConfigEntry entry)
case DSiSD_Enable: return Config::DSiSDEnable != 0;
case DSiSD_ReadOnly: return Config::DSiSDReadOnly != 0;
case DSiSD_FolderSync: return Config::DSiSDFolderSync != 0;
}
}*/
return false;
}
std::string GetConfigString(ConfigEntry entry)
{
switch (entry)
/*switch (entry)
{
case DLDI_ImagePath: return Config::DLDISDPath;
case DLDI_FolderPath: return Config::DLDIFolderPath;
case DSiSD_ImagePath: return Config::DSiSDPath;
case DSiSD_FolderPath: return Config::DSiSDFolderPath;
}
}*/
return "";
}