Changeset 1256 for cpp/frams/genetics/defgenoconv.cpp
- Timestamp:
- 06/22/23 03:33:58 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/defgenoconv.cpp
r1017 r1256 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-202 0Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2023 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 7 7 #include GEN_CONFIG_FILE 8 8 9 #ifdef USE_GENCONV_f00s 10 #include "f0s/f0s_conv.h" 11 #endif 9 12 #ifdef USE_GENCONV_f10 10 13 #include "f1/f1_conv.h" … … 58 61 void DefaultGenoConvManager::addDefaultConverters() 59 62 { 63 #ifdef USE_GENCONV_f00s 64 addConverter(new GenoConv_f00s()); 65 #endif 60 66 #ifdef USE_GENCONV_f10 61 67 addConverter(new GenoConv_f1()); … … 107 113 #endif 108 114 109 param.updatetab();115 conv_enabling_param.updatetab(); 110 116 }
Note: See TracChangeset
for help on using the changeset viewer.