1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-20 20:09:43 +00:00

removed mdText as it was equivalent to mdUnchanged

This commit is contained in:
Zeno Rogue
2019-04-29 10:52:41 +02:00
parent 85f4c57202
commit 5895540ae9
6 changed files with 8 additions and 7 deletions

View File

@@ -215,7 +215,7 @@ void display_data::set_projection(int ed) {
DEBB(DF_GRAPH, (debugfile,"current_display->set_projection\n"));
bool pers3 = false;
bool apply_models = !among(pmodel, mdText, mdRug);
bool apply_models = !among(pmodel, mdUnchanged, mdRug);
shaderside_projection = false;
glhr::new_shader_projection = glhr::shader_projection::standard;
@@ -323,7 +323,7 @@ void display_data::set_projection(int ed) {
}
}
if(vid.camera_angle && !among(pmodel, mdText, mdUnchanged, mdRug)) {
if(vid.camera_angle && !among(pmodel, mdUnchanged, mdRug)) {
ld cam = vid.camera_angle * degree;
GLfloat cc = cos(cam);