Merge pull request #41557 from Yetizone/master_small_typo

rasterizer_rd.cpp: Correct small typo
This commit is contained in:
Rémi Verschelde 2020-08-27 12:09:29 +02:00 committed by GitHub
commit 964b00717c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,7 @@ void RasterizerRD::begin_frame(double frame_step) {
void RasterizerRD::end_frame(bool p_swap_buffers) {
#ifndef _MSC_VER
#warning TODO: likely passa bool to swap buffers to avoid display?
#warning TODO: likely pass a bool to swap buffers to avoid display?
#endif
RD::get_singleton()->swap_buffers(); //probably should pass some bool to avoid display?
}