Update the comment of nwa.c

Update the comment about the format of Gameexe.ini (information from the official documentation of RealLiveMax, the public version of RealLive)
This commit is contained in:
grj1234 2021-10-02 15:59:24 +09:00 committed by GitHub
parent fe316bb24c
commit 7a5499ecb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,9 +200,19 @@ static int get_loops_gameexe_ini(STREAMFILE* sf, int* p_loop_flag, int32_t* p_lo
length = ext-1-namebase;
file_size = get_streamfile_size(sf_loop);
/* format of line is:
* #DSTRACK = 00000000 - eeeeeeee - ssssssss = "name" = "name2?"
* ^22 ^33 ^45 ^57
/* According to the official documentation of RealLiveMax (the public version of RealLive), format of line is:
* #DSTRACK = 00000000 - eeeeeeee - ssssssss = "filename" = "alias for game script"
* ^22 ^33 ^45 ^57?
*
* Original text from the documentation (written in Japanese) is:
* ;
* ;
* ; 99999999
* ;
* ;=========================================================================================================
* ; - - = =
* #DSTRACK = 00000000 - 01896330 - 00088270 = "b_manuke" = "b_manuke"
* #DSTRACK = 00000000 - 01918487 - 00132385 = "c_happy" = "c_happy"
*/
for (found = 0, offset = 0; !found && offset<file_size; offset++) {