Преглед изворни кода

Fix compilation warnings.

legacy
Sam Hocevar пре 4 година
родитељ
комит
d07ec1858b
6 измењених фајлова са 6 додато и 8 уклоњено
  1. +1
    -1
      doc/tutorial/15_gui.cpp
  2. +1
    -1
      doc/tutorial/17_net.cpp
  3. +1
    -1
      src/application/egl-app.cpp
  4. +2
    -1
      src/audio/sample.cpp
  5. +1
    -0
      src/lolua/baselua.h
  6. +0
    -4
      tools/vimlol/vimlol.vim

+ 1
- 1
doc/tutorial/15_gui.cpp Прегледај датотеку

@@ -42,7 +42,7 @@ public:
WorldEntity::tick_game(seconds);

static float f;
static vec3 clear_color;
//static vec3 clear_color;
static char buf[512];
ImGuiIO& io = ImGui::GetIO();
ImGui::SetNextWindowFocus();


+ 1
- 1
doc/tutorial/17_net.cpp Прегледај датотеку

@@ -56,7 +56,7 @@ int main(int argc, char **argv)
lol::sys::init(argc, argv);

lol::Application app("Tutorial 17: HTTP", lol::ivec2(800, 600), 60.0f);
auto p = new demo();
new demo();
app.Run();

return 0;


+ 1
- 1
src/application/egl-app.cpp Прегледај датотеку

@@ -254,8 +254,8 @@ EglApp::EglApp(char const *title, ivec2 res, float fps) :
#else
(void)title;
(void)res;
(void)fps;
#endif
(void)fps;
}

void EglApp::ShowPointer(bool show)


+ 2
- 1
src/audio/sample.cpp Прегледај датотеку

@@ -96,7 +96,8 @@ sample::sample(void const *samples, size_t len)
data->m_name = std::string("<sample>");

#if defined LOL_USE_SDL_MIXER
data->m_chunk = Mix_QuickLoad_RAW((Uint8 *)samples, (Uint32)len);
// FIXME: this requires that the data is kept around; should we copy it?
data->m_chunk = Mix_QuickLoad_RAW((Uint8 *)const_cast<void *>(samples), (Uint32)len);
data->m_channel = -1;
#endif
}


+ 1
- 0
src/lolua/baselua.h Прегледај датотеку

@@ -19,6 +19,7 @@ extern "C" {
#include "3rdparty/lua/lauxlib.h"
}

#include <lol/msg> // lol::msg
#include <cassert> // assert
#include <vector> // std::vector
#include <string> // std::string


+ 0
- 4
tools/vimlol/vimlol.vim Прегледај датотеку

@@ -51,10 +51,6 @@ au Syntax cpp
\ syn match cOperator
\ "\<lolunit_\(fail\|assert\|refute\)[a-z_]*\>"

" Global keywords
au Syntax cpp
\ syn keyword cConstant


"""
""" LolFx language handler


Loading…
Откажи
Сачувај