]> git.saurik.com Git - uikittools.git/blobdiff - iomfsetgamma.c
Serious issues with white icons being reported. :(
[uikittools.git] / iomfsetgamma.c
index 8f02a4cd756b6739e3de226a06ce362abe8e7106..6dbc2e72aa7046f8f8dbfc386c4032e6a4616abe 100644 (file)
@@ -73,20 +73,21 @@ int main(int argc, char *argv[]) {
     uint32_t data[0xc00 / sizeof(uint32_t)];
     memset(data, 0, sizeof(data));
 
-    FILE *file = fopen("/tmp/.iomfgamma.dat", "r");
+    FILE *file = fopen("/tmp/.iomfgamma.dat", "rb");
     if (file == NULL) {
-        file = fopen("/tmp/.iomfgamma.dat", "wb");
-
         $IOMobileFramebufferGetGammaTable = dlsym(RTLD_DEFAULT, "IOMobileFramebufferGetGammaTable");
-
         _assert($IOMobileFramebufferGetGammaTable != NULL);
         error = $IOMobileFramebufferGetGammaTable(fb, data);
         _assert(error == 0);
 
+        file = fopen("/tmp/.iomfgamma.dat", "wb");
+        _assert(file != NULL);
+
         fwrite(data, 1, sizeof(data), file);
         fclose(file);
 
-        file = fopen("/tmp/.iomfgamma.dat", "r");
+        file = fopen("/tmp/.iomfgamma.dat", "rb");
+        _assert(file != NULL);
     }
 
     fread(data, 1, sizeof(data), file);