(svn r14810) -Codechange: use the proper style for global variables.

This commit is contained in:
rubidium
2009-01-03 17:09:31 +00:00
parent 455a6e4554
commit 099022224f
4 changed files with 7 additions and 5 deletions

View File

@@ -96,7 +96,7 @@ static void DoPlaySong()
{
char filename[MAX_PATH];
FioFindFullPath(filename, lengthof(filename), GM_DIR,
origin_songs_specs[_music_wnd_cursong - 1].filename);
_origin_songs_specs[_music_wnd_cursong - 1].filename);
_music_driver->PlaySong(filename);
}
@@ -114,7 +114,7 @@ static void SelectSongToPlay()
do {
/* We are now checking for the existence of that file prior
* to add it to the list of available songs */
if (FioCheckFileExists(origin_songs_specs[_playlists[msf.playlist][i] - 1].filename, GM_DIR)) {
if (FioCheckFileExists(_origin_songs_specs[_playlists[msf.playlist][i] - 1].filename, GM_DIR)) {
_cur_playlist[j] = _playlists[msf.playlist][i];
j++;
}