~ fixed default values unit tests
This commit is contained in:
parent
798a5e103d
commit
32e31201ff
|
@ -11,11 +11,6 @@ namespace vkvm {
|
|||
auto setDefaultValues() -> void {
|
||||
impl.localMemoryWarn = false;
|
||||
if (getSharedMemory() != nullptr) {
|
||||
if (!impl.localSharedMemory.empty()) {
|
||||
if(getSharedMemory() == &impl.localSharedMemory[0]){
|
||||
return;
|
||||
}
|
||||
}
|
||||
setMode(GraphicMode::RGB);
|
||||
setCharactersPerRow(60);
|
||||
setCharactersPerColumn(20);
|
||||
|
|
|
@ -138,6 +138,7 @@ namespace vkvm {
|
|||
if(logToFileStream.is_open()){
|
||||
if(level >= fileLogLevel){
|
||||
logToFileStream << noColorStream.str();
|
||||
//TODO(julian): fixme
|
||||
logToFileStream.flush();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue