Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
slmjkdbtl committed Sep 8, 2023
1 parent de811b5 commit 8058185
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ loadFont("apl386", "/examples/fonts/apl386.ttf", {
```
- fixed `wave()` not starting at `0` when time is `0`
- kaboom now only displays error screen for kaboom's own error, instead of catching all errors in current window
- added `KaboomError` class for errors related to current kaboom instance

### v3000.1.6
- fixed `loadSound` typing to accept `ArrayBuffer`
Expand Down
2 changes: 1 addition & 1 deletion src/kaboom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6542,7 +6542,7 @@ export default (gopt: KaboomOpt = {}): KaboomCtx => {

const title = formatText({
...textStyle,
text: err.name,
text: "Error",
pos: vec2(pad),
color: rgb(255, 128, 0),
fixed: true,
Expand Down

0 comments on commit 8058185

Please sign in to comment.