diff options
| author | Johannes Schickel | 2010-03-08 23:56:59 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2010-03-08 23:56:59 +0000 |
| commit | 6dacac2187e999f06a7bae04dda609669c8c3440 (patch) | |
| tree | f6c332dfb8795a4152e48038562b8bbfb386a545 /tools | |
| parent | bc2b90f43bb558bd5e0fcdc470499e4fc65ebcbb (diff) | |
| download | scummvm-rg350-6dacac2187e999f06a7bae04dda609669c8c3440.tar.gz scummvm-rg350-6dacac2187e999f06a7bae04dda609669c8c3440.tar.bz2 scummvm-rg350-6dacac2187e999f06a7bae04dda609669c8c3440.zip | |
Conistenlty use USE_NASM instead of using HAVE_NASM in config.mk (this matches all the external library use too).
svn-id: r48208
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/create_msvc/create_msvc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create_msvc/create_msvc.cpp b/tools/create_msvc/create_msvc.cpp index 6e65539841..5dd4b05ffb 100644 --- a/tools/create_msvc/create_msvc.cpp +++ b/tools/create_msvc/create_msvc.cpp @@ -834,7 +834,7 @@ const Feature s_features[] = { // ScummVM feature flags { "16bit", "USE_RGB_COLOR", "", true, "16bit color support" }, { "mt32emu", "USE_MT32EMU", "", true, "integrated MT-32 emulator" }, - { "nasm", "HAVE_NASM", "", true, "IA-32 assembly support" }, // This feature is special in the regard, that it needs additional handling. + { "nasm", "USE_NASM", "", true, "IA-32 assembly support" }, // This feature is special in the regard, that it needs additional handling. }; } // End of anonymous namespace |
