Skip to content

Commit 0efa5b1

Browse files
committed
Merge branch 'main' of github.com:jhasse/jngl
2 parents 0879efc + 187a18f commit 0efa5b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ uint8_t App::mainLoop() {
158158
if (impl->steamAppId) {
159159
initSteamAchievements();
160160
}
161-
internal::debug("Starting main loop for '{}'.", impl->displayName);
161+
internal::trace("Starting main loop for '{}'.", impl->displayName);
162162
return pWindow->mainLoop();
163163
}
164164

src/freetype.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ FontImpl::FontImpl(const std::string& relativeFilename, unsigned int height, flo
174174
auto& fileCache = fileCaches[filename];
175175
bytes = fileCache.lock();
176176
if (bytes) {
177-
internal::debug("Reusing font buffer for {}... ", filename);
177+
internal::trace("Reusing font buffer for {}... ", filename);
178178
} else {
179179
internal::debug("Loading font {}...", filename);
180180

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void updateViewportAndLetterboxing(const int width, const int height, const int
8181

8282
void updateProjection(int windowWidth, int windowHeight, float originalWindowWidth,
8383
float originalWindowHeight) {
84-
internal::debug("Updating projection matrix to {}x{} (original size: {}x{})", windowWidth,
84+
internal::trace("Updating projection matrix to {}x{} (original size: {}x{})", windowWidth,
8585
windowHeight, std::lround(originalWindowWidth),
8686
std::lround(originalWindowHeight));
8787
const auto l = static_cast<float>(-windowWidth) / 2.f;

0 commit comments

Comments
 (0)