mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-23 00:09:49 +01:00
simplify a bit of code
This commit is contained in:
parent
bf00bf7963
commit
dbd774fedb
2 changed files with 2 additions and 5 deletions
|
@ -6,10 +6,7 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
void Debug::init(std::string IS) {
|
void Debug::init(std::string IS) {
|
||||||
if (ISDEBUG)
|
logFile = "/tmp/hypr/" + IS + (ISDEBUG ? "/hyprlandd.log" : "/hyprland.log");
|
||||||
logFile = "/tmp/hypr/" + IS + "/hyprlandd.log";
|
|
||||||
else
|
|
||||||
logFile = "/tmp/hypr/" + IS + "/hyprland.log";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Debug::wlrLog(wlr_log_importance level, const char* fmt, va_list args) {
|
void Debug::wlrLog(wlr_log_importance level, const char* fmt, va_list args) {
|
||||||
|
|
|
@ -14,7 +14,7 @@ GLint CShader::getUniformLocation(const std::string& unif) {
|
||||||
|
|
||||||
CShader::~CShader() {
|
CShader::~CShader() {
|
||||||
// destroy shader
|
// destroy shader
|
||||||
if (program != 0) {
|
if (program) {
|
||||||
glDeleteProgram(program);
|
glDeleteProgram(program);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue