diff options
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/bin2cpp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/bin2cpp.cpp b/src/tools/bin2cpp.cpp index 4214b34..cd57086 100644 --- a/src/tools/bin2cpp.cpp +++ b/src/tools/bin2cpp.cpp | |||
@@ -194,7 +194,8 @@ int main( int argc, char *argv[] ) | |||
194 | int idx = 0; | 194 | int idx = 0; |
195 | for( Bu::StringList::iterator i = opt.slInput.begin(); i; i++ ) | 195 | for( Bu::StringList::iterator i = opt.slInput.begin(); i; i++ ) |
196 | { | 196 | { |
197 | fSrc << "\t\tcase " << Bu::__calcHashCode( *i ) << "UL:" << fSrc.nl | 197 | fSrc << "\t\tcase " << Bu::__calcHashCode( *i ) << "UL: // \"" |
198 | << *i << "\"" << fSrc.nl | ||
198 | << "\t\t\treturn aFile[" << idx << "];" << fSrc.nl; | 199 | << "\t\t\treturn aFile[" << idx << "];" << fSrc.nl; |
199 | idx++; | 200 | idx++; |
200 | } | 201 | } |