small fixes (#1470)

* fix default window size

* add notice to imgui bar

* fix accidental commands in extractor

* super extremely important missing newline!
This commit is contained in:
ManDude 2022-06-18 00:47:51 +01:00 committed by GitHub
parent f212de86dc
commit e72f6e0cb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View file

@ -305,7 +305,7 @@ void compile(std::filesystem::path extracted_iso_path) {
}
void launch_game() {
system((file_util::get_jak_project_dir() / "../gk").string().c_str());
system(fmt::format("\"{}\"", (file_util::get_jak_project_dir() / "../gk").string()).c_str());
}
int main(int argc, char** argv) {

View file

@ -134,6 +134,10 @@ void OpenGlDebugGui::draw(const DmaStats& dma_stats) {
}
ImGui::EndMenu();
}
if (ImGui::BeginMenu("WORK IN PROGRESS VERSION!")) {
ImGui::EndMenu();
}
}
ImGui::EndMainMenuBar();

View file

@ -414,9 +414,9 @@
(set! (-> obj vsync?) #t)
(set! (-> obj letterbox?) #t)
(set-display-mode! obj 'windowed)
(set-size! obj 640 480)
(set-aspect! obj 4 3)
(set-display-mode! obj 'windowed)
(set! (-> obj gfx-msaa) 4) ;; 4x msaa

View file

@ -885,7 +885,7 @@
(format file " (hard-rats-hiwave ~D)~%" (-> obj secrets hard-rats-hiwave))
|#
(format file " (music")
(format file " (music~%")
(dotimes (i PC_MUSIC_LOG_LENGTH)
(if (-> obj secrets music i name)
(format file " (~A #x~X)~%" (-> obj secrets music i name) (-> obj secrets music i flava-mask))