mirror of
https://github.com/godotengine/godot.git
synced 2025-10-30 13:11:13 +00:00
Fix various assorted warnings
Fix various warnings that don't have enough instances to merit individual commits. Also fixes a potential bug in audio_server.cpp.
This commit is contained in:
parent
d1cb73b47a
commit
67a706fc1b
17 changed files with 125 additions and 136 deletions
|
|
@ -30,9 +30,10 @@
|
|||
#include "broad_phase_basic.h"
|
||||
#include "list.h"
|
||||
#include "print_string.h"
|
||||
|
||||
BroadPhaseSW::ID BroadPhaseBasic::create(CollisionObjectSW *p_object, int p_subindex) {
|
||||
|
||||
ERR_FAIL_COND_V(p_object == NULL, NULL);
|
||||
ERR_FAIL_COND_V(p_object == NULL, 0);
|
||||
|
||||
current++;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue