[Scummvm-git-logs] scummvm master -> f7b349ae660f7770e490a6690d9750334d33e619

digitall dgturner at iee.org
Mon Oct 8 01:07:57 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
f7b349ae66 DS: Fix Compilation.


Commit: f7b349ae660f7770e490a6690d9750334d33e619
    https://github.com/scummvm/scummvm/commit/f7b349ae660f7770e490a6690d9750334d33e619
Author: D G Turner (digitall at scummvm.org)
Date: 2018-10-08T00:16:23+01:00

Commit Message:
DS: Fix Compilation.

Changed paths:
    backends/platform/ds/arm9/source/fat/gba_nds_fat.c


diff --git a/backends/platform/ds/arm9/source/fat/gba_nds_fat.c b/backends/platform/ds/arm9/source/fat/gba_nds_fat.c
index 1247b3f..ddae087 100644
--- a/backends/platform/ds/arm9/source/fat/gba_nds_fat.c
+++ b/backends/platform/ds/arm9/source/fat/gba_nds_fat.c
@@ -3186,7 +3186,7 @@ int FAT_mkdir (const char* path)
 	// Create . directory entry
 	dirEntry.name[0] = '.';
 	// Fill name and extension with spaces
-	for (i = 1; i < (sizeof(name)/sizeof(name[0])); i++)
+	for (i = 1; i < (sizeof(dirEntry.name)/sizeof(dirEntry.name[0])); i++)
 	{
 		dirEntry.name[i] = ' ';
 	}





More information about the Scummvm-git-logs mailing list