File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
imgui-binding/src/main/java/imgui Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,14 @@ public final class ImGuiIO {
41
41
/**
42
42
* See ImGuiConfigFlags enum. Set by user/application. Gamepad/keyboard navigation options, etc.
43
43
*/
44
- public void addConfigFlags (int configFlags ) {
44
+ public void addConfigFlags (final int configFlags ) {
45
45
setConfigFlags (getConfigFlags () | configFlags );
46
46
}
47
47
48
48
/**
49
49
* See ImGuiConfigFlags enum. Set by user/application. Gamepad/keyboard navigation options, etc.
50
50
*/
51
- public void removeConfigFlags (int configFlags ) {
51
+ public void removeConfigFlags (final int configFlags ) {
52
52
setConfigFlags (getConfigFlags () & ~(configFlags ));
53
53
}
54
54
@@ -69,14 +69,14 @@ public void removeConfigFlags(int configFlags) {
69
69
/**
70
70
* See ImGuiBackendFlags enum. Set by back-end to communicate features supported by the back-end.
71
71
*/
72
- public void addBackendFlags (int backendFlags ) {
72
+ public void addBackendFlags (final int backendFlags ) {
73
73
setBackendFlags (getBackendFlags () | backendFlags );
74
74
}
75
75
76
76
/**
77
77
* See ImGuiBackendFlags enum. Set by back-end to communicate features supported by the back-end.
78
78
*/
79
- public void removeBackendFlags (int backendFlags ) {
79
+ public void removeBackendFlags (final int backendFlags ) {
80
80
setBackendFlags (getBackendFlags () & ~(backendFlags ));
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments