Skip to content

Commit

Permalink
Fix bugs with 0.105.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bettse committed Aug 15, 2024
1 parent ca2f9e5 commit 9e21ad8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sam_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <toolbox/version.h>
#include <bit_lib/bit_lib.h>

//#define ASN1_DEBUG true
#define ASN1_DEBUG true

#define TAG "SAMAPI"

Expand Down
1 change: 0 additions & 1 deletion seader.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ Seader* seader_alloc() {
seader->worker = seader_worker_alloc();
seader->view_dispatcher = view_dispatcher_alloc();
seader->scene_manager = scene_manager_alloc(&seader_scene_handlers, seader);
view_dispatcher_enable_queue(seader->view_dispatcher);
view_dispatcher_set_event_callback_context(seader->view_dispatcher, seader);
view_dispatcher_set_custom_event_callback(
seader->view_dispatcher, seader_custom_event_callback);
Expand Down
1 change: 1 addition & 0 deletions seader_i.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once
#define ASN_EMIT_DEBUG 0

#include <stdlib.h> // malloc
#include <stdint.h> // uint32_t
Expand Down
1 change: 1 addition & 0 deletions seader_worker_i.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once
#define ASN_EMIT_DEBUG 0

#include "seader_i.h"
#include "seader_worker.h"
Expand Down

0 comments on commit 9e21ad8

Please sign in to comment.