Forgot to update reference to renamed enum values

This commit is contained in:
rafspiny 2023-08-03 17:59:43 +02:00 committed by Carsten Haitzler
parent faa5c6ae84
commit fbfd52f679
1 changed files with 5 additions and 6 deletions

View File

@ -264,12 +264,11 @@ on_accelerometer_orientation(void *data, const Eldbus_Message *msg, Eldbus_Pendi
else else
{ {
Eina_List *l; Eina_List *l;
const char *randr_id = NULL; char *randr_id = NULL;
EINA_LIST_FOREACH(inst->randr2_ids, l, randr_id) EINA_LIST_FOREACH(inst->randr2_ids, l, randr_id)
{ {
_fetch_and_rotate_screen(randr_id, orientation); _fetch_and_rotate_screen(randr_id, orientation);
} }
free(randr_id);
} }
} }
@ -278,10 +277,10 @@ _convertible_rotation_get(const enum screen_rotation orientation)
{ {
switch (orientation) switch (orientation)
{ {
case normal: return 0; case NORMAL: return 0;
case left_up: return 90; case LEFT_UP: return 90;
case flipped: return 180; case FLIPPED: return 180;
case right_up: return 270; case RIGHT_UP: return 270;
default: return 0; default: return 0;
} }